"));
});
-#[cfg(target_os = "linux")]
+#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_os = "linux"))]
test!(cargo_platform_specific_dependency {
let p = project("foo")
.file("Cargo.toml", r#"
execs().with_stdout("test passed\n"));
});
-#[cfg(not(target_os = "linux"))]
+#[cfg(not(all(any(target_arch = "x86", target_arch = "x86_64"), target_os = "linux")))]
test!(cargo_platform_specific_dependency {
let p = project("foo")
.file("Cargo.toml", r#"